Description
Used to define which columns from the related table are shown in the list view.
Diagram
Overview
|
COLUMN
Used to define which columns from the related table are shown in the list view.
|
field optional
Used to define the column name in the related table.
|
|
visible optional
Used to define if the column is visible or not (default = "true").
|
|
caption optional
Used to define the title of the column in the list view. Default is name of field.
|
|
width optional
Used to define the width of the column in pixels. Default is 50.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
field | | optional | | | Used to define the column name in the related table. |
visible | | optional | | | Used to define if the column is visible or not (default = "true"). |
caption | | optional | | | Used to define the title of the column in the list view. Default is name of field. |
width | | optional | | | Used to define the width of the column in pixels. Default is 50. |
Source
<xs:element name="COLUMN" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to define which columns from the related table are shown in the list view.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="field">
<xs:annotation>
<xs:documentation>Used to define the column name in the related table.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="visible">
<xs:annotation>
<xs:documentation>Used to define if the column is visible or not (default = "true").</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="caption">
<xs:annotation>
<xs:documentation>Used to define the title of the column in the list view. Default is name of field.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="width">
<xs:annotation>
<xs:documentation>Used to define the width of the column in pixels. Default is 50.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also